home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #4
/
Amiga Plus CD - 1998 - No. 4.iso
/
pd
/
musik
/
mrmpeg
/
stop.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-01-02
|
539b
|
21 lines
/* Stop.rexx */
options results; address MrMPEG
MUIA_Disabled = 0x80423661; MUIA_NoNotify = 0x804237f9
MUIA_Selected = 0x8042654b; MUIA_Slider_Level = 0x8042ae3a
image ID STOP ATTRS MUIA_Disabled 1
check ID PLAY
if result = 1 then do
check ID PLAY ATTRS MUIA_Selected 0 MUIA_NoNotify 1
setvar stopped 1
end
call setclip('MrMPEG_FLAG', 1)
address command 'Kill >NIL: MPEGA'
slider ID PROG ATTRS MUIA_Slider_Level 0
setvar current_time '00:00'
/* text ID CURNT LABEL "\033b\033r00:00" */
image ID STOP ATTRS MUIA_Disabled 0
return